type flag.intValue
8 uses
flag (current package)
flag.go#L156: type intValue int
flag.go#L158: func newIntValue(val int, p *int) *intValue {
flag.go#L160: return (*intValue)(p)
flag.go#L163: func (i *intValue) Set(s string) error {
flag.go#L168: *i = intValue(v)
flag.go#L172: func (i *intValue) Get() any { return int(*i) }
flag.go#L174: func (i *intValue) String() string { return strconv.Itoa(int(*i)) }
flag.go#L594: case *intValue, *int64Value:
The pages are generated with Golds v0.6.7. (GOOS=linux GOARCH=amd64) Golds is a Go 101 project developed by Tapir Liu. PR and bug reports are welcome and can be submitted to the issue list. Please follow @Go100and1 (reachable from the left QR code) to get the latest news of Golds. |